style.module.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .messageCollapse {
  2. padding: 0 0.12rem 0.12rem;
  3. :global(.adm-list-body-inner) {
  4. // background: #32343a;
  5. // box-shadow: 0 0 15px #34a7bb inset;
  6. // border: 1px solid #46e3ff;
  7. border-radius: 0.1rem;
  8. background-color: #1f2830;
  9. }
  10. :global(a.adm-list-item:active:not(.adm-list-item-disabled)) {
  11. // background-color: #32343a;
  12. }
  13. :global(.adm-collapse-panel-content) {
  14. // background: #32343a;
  15. margin-bottom: 10px;
  16. }
  17. }
  18. .emailBox {
  19. height: 100%;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: stretch;
  23. .content {
  24. flex: 1;
  25. min-height: 0;
  26. overflow: auto;
  27. padding: 0 0.12rem 0.12rem;
  28. }
  29. .footer {
  30. .btns {
  31. display: flex;
  32. background-color: #161b1f;
  33. justify-content: space-between;
  34. box-sizing: border-box;
  35. padding: 0.12rem;
  36. button {
  37. width: 47%;
  38. color: #121c1b;
  39. height: 0.38rem;
  40. border-radius: 0.19rem;
  41. &:nth-child(1) {
  42. background-color: #11de68;
  43. }
  44. &:nth-child(2) {
  45. background-color: #ecc720;
  46. }
  47. }
  48. }
  49. }
  50. .emailItem {
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. background-color: #1f2830;
  55. margin-bottom: 0.12rem;
  56. border-radius: 0.1rem;
  57. padding: 0.12rem;
  58. }
  59. .doGet {
  60. color: #ebc71f;
  61. font-size: 0.14rem;
  62. }
  63. .title {
  64. width: 60%;
  65. div:nth-child(1) {
  66. width: 100%;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. white-space: nowrap;
  70. }
  71. }
  72. .gift {
  73. width: 0.24rem;
  74. }
  75. }